home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen… 1994 February Supplement / ARPL-Feb-94-Supplement-PowerPC.iso / 3rd Party PowerPC Demo Apps / Diehl Graphsoft MiniCad-G / German MiniCad Demo (Click Me!) / German MiniCad Demo (Click Me!).rsrc / STR#_7016.txt < prev    next >
Encoding:
Text File  |  1994-01-18  |  2.2 KB  |  85 lines

  1. FObject : HANDLE;
  2.  
  3. Returns a HANDLE to  the first object in the active document
  4.  
  5. LObject : HANDLE;
  6.  
  7. Returns a HANDLE to  the last object in the active document
  8.  
  9. FActLayer : HANDLE;
  10.  
  11. Returns a HANDLE to the first object on the active layer
  12.  
  13. FSActLayer : HANDLE;
  14.  
  15. Return a HANDLE to the first selected object on the active layer
  16.  
  17. LSActLayer : HANDLE;
  18.  
  19. Return a HANDLE to the last selected object on the active layer
  20.  
  21. ActSSheet : HANDLE;
  22.  
  23. Returns a HANDLE to the currently active spreadsheet
  24.  
  25. GetObject(Name : STRING) : HANDLE;
  26.  
  27. Receives an object name and returns a HANDLE to the object which has that name
  28.  
  29. FLayer : HANDLE;
  30.  
  31. Returns a HANDLE to the first layer in a drawing
  32.  
  33. LLayer : HANDLE;
  34.  
  35. Returns a HANDLE to the last layer in a drawing
  36.  
  37. ActLayer : HANDLE;
  38.  
  39. Returns a HANDLE to the currently active layer
  40.  
  41. FSObject( LayerHandle : HANDLE) : HANDLE;
  42.  
  43. Returns a HANDLE to the first selected object on the layer specified by the HANDLE LayerHandle
  44.  
  45. GetLayer(ObjectHandle : HANDLE) : HANDLE;
  46.  
  47. Receives a HANDLE to a graphic object and returns a HANDLE to its corresponding layer
  48.  
  49. FSymDef : HANDLE;
  50.  
  51. Returns a HANDLE to the first object in the current document's symbol library
  52.  
  53. FInGroup( GroupHandle : HANDLE) : HANDLE;
  54.  
  55. Receives a HANDLE to a group and returns a HANDLE to the first object inside the group
  56.  
  57. FIn3D(ThreeDHandle : HANDLE) : HANDLE;
  58.  
  59. Receives a HANDLE to a 3D object and returns a HANDLE to the first object inside the 3D object
  60.  
  61. FInSymDef( SymbolDefHandle : HANDLE) : HANDLE;
  62.  
  63. Receives a HANDLE to a symbol definition in a symbol library and returns a HANDLE to the first object within the symbol definition
  64.  
  65. FInLayer( LayerHandle : HANDLE) : HANDLE;
  66.  
  67. Receives a HANDLE to a layer and returns the HANDLE to the first object on that layer
  68.  
  69. FInFolder(FolderHandle : HANDLE) : HANDLE;
  70.  
  71. Receives a HANDLE to a folder within the symbol library and returns a HANDLE to the first object within that folder
  72.  
  73. PickObject(X,Y : REAL) : HANDLE;
  74.  
  75. Receives a coordinate point location and if that point is near a graphic point it returns a HANDLE to that object
  76.  
  77. LNewObj : Handle;
  78.  
  79. Returns a handle to the last object created in MiniPascal. Returns nil if no objects have been created yet.
  80.  
  81. ActSymDef : Handle;
  82.  
  83. Returns a handle to the currently active symbol.
  84.  
  85.